body {
    margin: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-image: url("../img/Fondo 2.jpg");
    background-size: 100% 575px;
    width: 100vw;
    color: #ffffff;
}

h3{
    color: #ffffff;
    font-size: 45px;
    text-align: center;
    font-weight: bold;
    text-shadow: 0px 4px 6px rgb(255, 255, 255);
}

@keyframes glow {
    0% { filter: drop-shadow(0 0 5px gold); }
    50% { filter: drop-shadow(0 0 15px gold); }
    100% { filter: drop-shadow(0 0 5px gold); }
}

.logo {
    animation: glow 2s infinite alternate;
}


.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 40px;
    background-color: #000000;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    font-size: 20px;
    height: 100px;
}

.navbar img{
    height: 80px;
    margin-right: 10px;
    object-fit: contain;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 20px;
}

.navbar a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    cursor: pointer;
    padding: 20px 50px;
    display: flex;
    box-shadow: 0px 4px 6px rgb(66, 66, 66);
}

.dropdown-container {
    position: relative;
}

.dropdown {
    position: absolute;
    background-color: #000000;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgb(212, 212, 12);
    padding: 10px;
    display: none;
    flex-direction: column;
    min-width: 350px;
    top: 90px;
    left: 0;
}

.dropdown a {
    padding: 5px;
    text-decoration: none;
    color: rgb(255, 255, 255);
    display: block;
    border-radius: 5px;
}

.dropdown a:hover {
    background-color: #f1f1f1;
}

.dropdown p{
    font-size: 20px;
    color: rgb(255, 255, 255);
}

.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
    background-color: rgb(0, 0, 0);
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgb(212, 212, 12);
    padding: 10px;
    min-width: 350px;
}

.show {
    display: flex;
}

.portafolio{
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 20px;
}

.portafolio p{
    font-size: 25px;
    text-align: justify;
    margin: 0 auto;
    max-width: 50%;
}

.portafolio img{
    margin-left: 350px;
    width: 40%;
    max-height: auto;
    justify-content: center;
}

.portafolio h1{
    color: #ffffff;
    font-size: 30px;
    text-align: center;
    text-shadow: 0px 4px 6px rgb(255, 255, 255);
}

.portafolio h2{
    color: #ffffff;
    font-size: 35px;
    text-align: center;
    font-weight: bold;
    text-shadow: 0px 4px 6px rgb(255, 255, 255);
}

.contenedor {
    display: flex;
    align-items: center;
    gap: 0px;
}

.contenedor ul{
    padding: 0px;
    margin-right: 0px;
}

.contenedor li{
    margin-left: 350px;
    font-size: 25px;
    margin-right: 0px;
}

.contenedor img {
    max-width: 20%; 
    height: auto;
    margin-left: 110px;
}

.imagenes-abajo img {
    width: 20%;
    height: auto;
    margin-top: -300px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #000000;
}

.social-icons {
    margin-bottom: 10px;
}

.social-icons a {
    margin: 0 10px;
}

.copyright {
    font-size: 14px;
    color: #6c757d;
}

.copyright a {
    color: #58b4c7;
    font-weight: bold;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}